-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support POST for /node/full/ #587
Conversation
This isn't working yet. Running the |
Here is a hint... The failing test is receiving a response that indicates only the GET method is allowed for this route.
It seems that either this section (below) should revert to a GET request...or the I would tend to suggest reverting to the GET version in the client; then instead write a test that verifies the new POST route in the server/router for Subsequently we might still need to add POST routes corresponding to all the GET data routes; similar to
|
With fresh eyes on this, I think it would make more sense to start from the bottom up. I believe the general E.g., Add a test to I welcome input from @danielballan and others on the approach here. |
I wonder if we should merge this first, which deprecates |
Yes, this would indeed be helpful. Thanks for putting that forward! |
Superseded by #657 |
Closes #579.